String MethodstrimOn this pagetrimPagpapaliwanagtrim method ay aalisin niyalang yung mga spaces sa unahan at hulihan ng string.Spaces like '\n' and '\t' included silaconst x = " hello ";console.log(x.length); // 13//Return Valueconsole.log(x.trimStart()); // helloconsole.log(x.trimStart().length); // 5Iba pang resourcesMDN Documentation (English)